home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java Certification Exam Guide
/
McGrawwHill-JavaCertificationExamGuide.iso
/
pc
/
Web Links and Code
/
code
/
chap9
/
Base.java
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-04-20
|
181 b
|
14 lines
class Base {
int i = 1;
String test() {
return "Base";
}
}
class Derived extends Base {
int i = 2;
String test() {
return "Derived";
}
}